home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 June / CHIP Haziran 2001.iso / prog / haziran / 19 / setup.exe / data.z / speaker.bpr < prev    next >
Text File  |  2001-04-11  |  4KB  |  164 lines

  1. # ---------------------------------------------------------------------------
  2. !if !$d(BCB)
  3. BCB = $(MAKEDIR)\..
  4. !endif
  5.  
  6. # ---------------------------------------------------------------------------
  7. # IDE SECTION
  8. # ---------------------------------------------------------------------------
  9. # The following section of the project makefile is managed by the BCB IDE.
  10. # It is recommended to use the IDE to change any of the values in this
  11. # section.
  12. # ---------------------------------------------------------------------------
  13.  
  14. VERSION = BCB.03
  15. # ---------------------------------------------------------------------------
  16. PROJECT = speaker.exe
  17. OBJFILES = speaker.obj\
  18.  speaker.obj\
  19.  speaker_lib.obj
  20. RESFILES =
  21. RESDEPEN = $(RESFILES)
  22. LIBFILES = 
  23. LIBRARIES = 
  24. SPARELIBS = 
  25. PACKAGES =
  26. DEFFILE =
  27. # ---------------------------------------------------------------------------
  28. PATHCPP = 
  29. PATHASM = .;
  30. PATHPAS = .;
  31. PATHRC = .;
  32. DEBUGLIBPATH = $(BCB)\lib\debug
  33. RELEASELIBPATH = $(BCB)\lib\release
  34. # ---------------------------------------------------------------------------
  35. CFLAG1 =  -Od -w -r- -k -y -v -vi- -c -tWC
  36. CFLAG2 = -D_NO_VCL -I$(BCB)\include
  37. CFLAG3 = -Tkh30000
  38. PFLAGS = -D_NO_VCL -$Y -$W -$O- -v -JPHN -M \
  39.  -U$(BCB)\lib;$(DEBUGLIBPATH)\
  40.  -I$(BCB)\include
  41. RFLAGS = -D_NO_VCL -i$(BCB)\include
  42. AFLAGS = /i$(BCB)\include /d_NO_VCL /mx /w2 /zd
  43. LFLAGS = -ap -Tpe -x -Gn -v \
  44.  -L$(BCB)\lib;$(DEBUGLIBPATH)
  45. IFLAGS =
  46. # ---------------------------------------------------------------------------
  47. ALLOBJ = c0x32.obj $(OBJFILES)
  48. ALLRES = $(RESFILES)
  49. ALLLIB = $(LIBFILES)  import32.lib cw32mt.lib
  50. # ---------------------------------------------------------------------------
  51. !ifdef IDEOPTIONS
  52.  
  53. [Version Info]
  54. IncludeVerInfo=0
  55. AutoIncBuild=0
  56. MajorVer=1
  57. MinorVer=0
  58. Release=0
  59. Build=0
  60. Debug=0
  61. PreRelease=0
  62. Special=0
  63. Private=0
  64. DLL=0
  65. Locale=1033
  66. CodePage=1252
  67.  
  68. [Version Info Keys]
  69. CompanyName=
  70. FileDescription=Executable (Console)
  71. FileVersion=1.0.0.0
  72. InternalName=
  73. LegalCopyright=
  74. LegalTrademarks=
  75. OriginalFilename=
  76. ProductName=
  77. ProductVersion=1.0.0.0
  78. Comments=
  79.  
  80. [Debugging]
  81. DebugSourceDirs=
  82.  
  83. [Parameters]
  84. RunParams=
  85. HostApplication=
  86.  
  87. !endif
  88.  
  89. # ---------------------------------------------------------------------------
  90. # MAKE SECTION
  91. # ---------------------------------------------------------------------------
  92. # This section of the project file is not used by the BCB IDE.  It is for
  93. # the benefit of building from the command-line using the MAKE utility.
  94. # ---------------------------------------------------------------------------
  95.  
  96. .autodepend
  97. # ---------------------------------------------------------------------------
  98. !if !$d(BCC32)
  99. BCC32 = bcc32
  100. !endif
  101.  
  102. !if !$d(DCC32)
  103. DCC32 = dcc32
  104. !endif
  105.  
  106. !if !$d(TASM32)
  107. TASM32 = tasm32
  108. !endif
  109.  
  110. !if !$d(LINKER)
  111. LINKER = ilink32
  112. !endif
  113.  
  114. !if !$d(BRCC32)
  115. BRCC32 = brcc32
  116. !endif
  117. # ---------------------------------------------------------------------------
  118. !if $d(PATHCPP)
  119. .PATH.CPP = $(PATHCPP)
  120. .PATH.C   = $(PATHCPP)
  121. !endif
  122.  
  123. !if $d(PATHPAS)
  124. .PATH.PAS = $(PATHPAS)
  125. !endif
  126.  
  127. !if $d(PATHASM)
  128. .PATH.ASM = $(PATHASM)
  129. !endif
  130.  
  131. !if $d(PATHRC)
  132. .PATH.RC  = $(PATHRC)
  133. !endif
  134. # ---------------------------------------------------------------------------
  135. $(PROJECT): $(OBJFILES) $(RESDEPEN) $(DEFFILE)
  136.     $(BCB)\BIN\$(LINKER) @&&!
  137.     $(LFLAGS) +
  138.     $(ALLOBJ), +
  139.     $(PROJECT),, +
  140.     $(ALLLIB), +
  141.     $(DEFFILE), +
  142.     $(ALLRES)
  143. !
  144. # ---------------------------------------------------------------------------
  145. .pas.hpp:
  146.     $(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
  147.  
  148. .pas.obj:
  149.     $(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
  150.  
  151. .cpp.obj:
  152.     $(BCB)\BIN\$(BCC32) $(CFLAG1) $(CFLAG2) $(CFLAG3) -n$(@D) {$< }
  153.  
  154. .c.obj:
  155.     $(BCB)\BIN\$(BCC32) $(CFLAG1) $(CFLAG2) $(CFLAG3) -n$(@D) {$< }
  156.  
  157. .asm.obj:
  158.     $(BCB)\BIN\$(TASM32) $(AFLAGS) $<, $@
  159.  
  160. .rc.res:
  161.     $(BCB)\BIN\$(BRCC32) $(RFLAGS) -fo$@ $<
  162. # ---------------------------------------------------------------------------
  163.  
  164.